home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / acpi / thinkpad-stretchortouchpad.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2009-10-13  |  948b  |  38 lines

  1. #!/bin/sh
  2.  
  3. test -f /usr/share/acpi-support/key-constants || exit 0
  4.  
  5. # Lenovo rock.  They have changed the function of the Fn-F8
  6. # combination on the LenovoPads from stretching the display (in
  7. # hardware/BIOS) to toggling the touchpad on and off.
  8. #
  9. # Unfortunately they didn't bother to change the DMI strings
  10. # consistently...  so some of the new machines say 'LENOVO' and some
  11. # still say 'IBM'.  Yay for consistency(!).
  12.  
  13. # So:
  14. # IBM && !Series60   => nothing
  15. # IBM && Series60    => Touchpad toggle
  16. # LENOVO && ThinkPad => Touchpad toggle
  17.  
  18. toggle_touchpad=0
  19.  
  20. system_manufactuer=`dmidecode -s system-manufacturer`
  21. case "$system_manufactuer" in
  22.     IBM*)
  23.     system_version=`dmidecode -s system-version`
  24.     case "$system_version" in
  25.     ThinkPad\ [TXZ]60*)
  26.     toggle_touchpad=1
  27.     ;;
  28.     esac
  29.     ;;
  30.     LENOVO*)
  31.     toggle_touchpad=1
  32.     ;;
  33. esac
  34.  
  35. if [ "$toggle_touchpad" -ne 0 -a -x /etc/acpi/asus-touchpad.sh ] ; then
  36.     /etc/acpi/asus-touchpad.sh
  37. fi
  38.